.qg-alert-progress {
    width: 13px;
    height: 13px
}

.qg-alert__circle {
    stroke-width: 2;
    stroke-linecap: square;
    fill: none;
    transform: rotate(-90deg);
    transform-origin: center
}

.qg-alert-stage:hover .qg-alert__circle {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important
}

.qg-alert__background {
    stroke-width: 2;
    fill: none
}

.qg-alert-stage {
    position: fixed;
    top: 100px;
    left: 50%;
    width: auto;
    transform: translate(-50%, 0);
    z-index: 20210928
}

.qg-alert-wrapper {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    transition: height .3s ease, padding .3s ease;
    padding: 6px 0;
    will-change: transform, opacity;
}

.qg-alert {
    padding: 10px 18px 10px 18px;
    /* border-radius: 3px; */
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    /* transform: translate3d(-50%, 0, 0); */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.qg-alert-content,
.qg-alert-icon,
.qg-alert-wait {
    display: inline-block
}

.qg-alert-icon {
    position: relative;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

.qg-alert-icon img {
    width: 14px;
    height: 14px;
}

.qg-alert-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px
}

.qg-alert-wait {
    width: 20px;
    height: 20px;
    position: relative;
    fill: #4eb127
}

.qg-alert-wait svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.qg-alert-close {
    width: 14px;
    height: 14px
}

.qg-alert-content {
    margin: 0 10px;
    min-width: 240px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, Microsoft Yahei, sans-serif;
    text-shadow: 0 0 1px rgba(0, 0, 0, .01)
}

.qg-alert.info {
    color: #0088FA;
    background-color: rgba(226,244,255);
    border: 1px solid #89cafc;
    border-radius: 2px;
}

/* .qg-alert.info .qg-alert-icon {
    background-color: #0088FA
} */

.qg-alert.info .qg-alert-content {
    color: #0088FA;
}

.qg-alert.success {
    color: #7EC050;
    background-color: #f0f9ec;
    border: 1px solid #e4f2da;
    border-radius: 2px;
}

/* .qg-alert.success .qg-alert-icon {
    background-color: #7EC050;
} */

.qg-alert.success .qg-alert-content {
    color: #7EC050;
}

.qg-alert.warning {
    color: #DF9134;
    background-color: rgba(254,244,233);
    border: 1px solid #f7deb5;
    border-radius: 2px;
}

/* .qg-alert.warning .qg-alert-icon {
    background-color: #DF9134
} */

.qg-alert.warning .qg-alert-content {
    color: #F6AE54;
}

.qg-alert.error {
    color: #D93026;
    background-color: rgba(255,233,233);
    border: 1px solid #D93026;
    border-radius: 2px;
}

/* .qg-alert.error .qg-alert-icon {
    background-color: #D93026
} */

.qg-alert.error .qg-alert-content {
    color: #D93026;
}

.qg-alert.loading {
    color: #89CAFC;
    background-color: rgba(226,244,255);
    border: 1px solid #89CAFC;
    border-radius: 2px;
}

.qg-alert.loading .qg-alert-content {
    color: #0088FA;
}

.qg-alert_loading {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative
}
.qg-svg-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px
}
.qg-alert-circular {
    -webkit-animation: qg-alert-rotate 2s linear infinite both;
    animation: qg-alert-rotate 2s linear infinite both;
    transform-origin: center center;
    height: 18px !important;
    width: 18px !important;
}

.qg-alert-path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke: #0fafad;
    -webkit-animation: qg-alert-dash 1.5s ease-in-out infinite;
    animation: qg-alert-dash 1.5s ease-in-out infinite;
    stroke-linecap: round
}

@-webkit-keyframes qg-alert-rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes qg-alert-rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@-webkit-keyframes qg-alert-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@keyframes qg-alert-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

.qg-alert.info .qg-alert-wait {
    /* fill: #0fafad; */
    fill: #E5E9ED;
}

.qg-alert.success .qg-alert-wait {
    fill: #07B98B
}

.qg-alert.warning .qg-alert-wait {
    fill: #F6AE54
}

.qg-alert.error .qg-alert-wait {
    fill: #D93026
}

.qg-alert.loading .qg-alert-wait {
    fill: #E2F4FF
}

.qg-alert-pointer {
    cursor: pointer
}

@-webkit-keyframes qg-alert_info {
    0% {
        stroke: #0088FA;
    }
    to {
        stroke: #0088FA;
        stroke-dasharray: 0 100
    }
}

@keyframes qg-alert_info {
    0% {
        stroke: #0088FA;
    }
    to {
        stroke: #0088FA;
        stroke-dasharray: 0 100
    }
}

@-webkit-keyframes qg-alert_success {
    0% {
        stroke: #07B98B
    }
    to {
        stroke: #07B98B;
        stroke-dasharray: 0 100
    }
}

@keyframes qg-alert_success {
    0% {
        stroke: #07B98B
    }
    to {
        stroke: #07B98B;
        stroke-dasharray: 0 100
    }
}

@-webkit-keyframes qg-alert_warning {
    0% {
        stroke: #F6AE54
    }
    to {
        stroke: #F6AE54;
        stroke-dasharray: 0 100
    }
}

@keyframes qg-alert_warning {
    0% {
        stroke: #F6AE54
    }
    to {
        stroke: #F6AE54;
        stroke-dasharray: 0 100
    }
}

@-webkit-keyframes qg-alert_error {
    0% {
        stroke: #D93026
    }
    to {
        stroke: #D93026;
        stroke-dasharray: 0 100
    }
}

@keyframes qg-alert_error {
    0% {
        stroke: #D93026
    }
    to {
        stroke: #D93026;
        stroke-dasharray: 0 100
    }
}

.qg-alert-fade-in {
    -webkit-animation: qg-alert-fade .2s ease-out both;
    animation: qg-alert-fade .2s ease-out both
}

.qg-alert-fade-out {
    animation: qg-alert-fade .3s linear reverse both
}

@-webkit-keyframes qg-alert-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
        transform: translate3d(-50%, -80%, 0)
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0)
    }
}

@keyframes qg-alert-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
        transform: translate3d(-50%, -80%, 0)
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0)
    }
}